pack children from the start instead of the end, this should probably be
authorJohan Dahlin <jdahlin@async.com.br>
Wed, 4 Jul 2007 03:49:33 +0000 (03:49 +0000)
committerJohan Dahlin <johan@src.gnome.org>
Wed, 4 Jul 2007 03:49:33 +0000 (03:49 +0000)
2007-07-04  Johan Dahlin  <jdahlin@async.com.br>

    * gtk/gtkcelllayout.c (_gtk_cell_layout_buildable_add_child):
    pack children from the start instead of the end, this should
    probably be made configurable at some point.

svn path=/trunk/; revision=18374

ChangeLog
gtk/gtkcelllayout.c

index 563a1bd90e5ea315f01ee41d1eefffa7090f46c8..5c6d5935f9ee07a1f8ea370e3e137f0ad976501c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2007-07-04  Johan Dahlin  <jdahlin@async.com.br>
 
+       * gtk/gtkcelllayout.c (_gtk_cell_layout_buildable_add_child): 
+       pack children from the start instead of the end, this should
+       probably be made configurable at some point.
+
        * gtk/gtk-builder-convert:
        Add support for converting GtkComboBox items, also make sure
        that we support more than one GtkAdjustment in a file
index 7ec93569459e3038cece9fd3e1e6d04826098eff..970ec954df5ec3139f4b9eb1395f0c682534611e 100644 (file)
@@ -433,8 +433,8 @@ _gtk_cell_layout_buildable_add_child (GtkBuildable      *buildable,
   g_return_if_fail (GTK_IS_CELL_RENDERER (child));
 
   iface = GTK_CELL_LAYOUT_GET_IFACE (buildable);
-  g_return_if_fail (iface->pack_end != NULL);
-  iface->pack_end (GTK_CELL_LAYOUT (buildable), GTK_CELL_RENDERER (child), FALSE);
+  g_return_if_fail (iface->pack_start != NULL);
+  iface->pack_start (GTK_CELL_LAYOUT (buildable), GTK_CELL_RENDERER (child), FALSE);
 }
 
 #define __GTK_CELL_LAYOUT_C__